projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31f3d83
)
(map_char_table): Fix args in recursive call.
author
Karl Heuer
<kwzh@gnu.org>
Wed, 21 Feb 1996 21:12:21 +0000
(21:12 +0000)
committer
Karl Heuer
<kwzh@gnu.org>
Wed, 21 Feb 1996 21:12:21 +0000
(21:12 +0000)
src/fns.c
patch
|
blob
|
history
diff --git
a/src/fns.c
b/src/fns.c
index defd2232bc571691949391444e86466c05d23a6d..1a601d7d5a5e88fdd8ec62114da7d9bba1e70559 100644
(file)
--- a/
src/fns.c
+++ b/
src/fns.c
@@
-1351,7
+1351,7
@@
map_char_table (c_function, function, chartable, depth, indices)
indices[depth] = i;
elt = XCHAR_TABLE (chartable)->contents[i];
if (CHAR_TABLE_P (elt))
- map_char_table (c
hartable, c_function, function
, depth + 1, indices);
+ map_char_table (c
_function, function, chartable
, depth + 1, indices);
else if (c_function)
(*c_function) (depth + 1, indices, elt);
/* Here we should handle all cases where the range is a single character